home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 009 / pkpatch.doc < prev    next >
Text File  |  1979-12-31  |  1KB  |  61 lines

  1. Using PKARC 2.0 with a DOS environment larger than 236 bytes may cause
  2. PKARC to abort with an "Insufficient Memory" error.  This problem
  3. can be fixed as follows.
  4.  
  5. Using debug, change the byte at offset 417D hex in the file PKARC.COM,
  6. version 2.0, dated 12-15-86.  The value in the distribution copy is 8.
  7. Changing this value will yield the results shown:
  8.  
  9. Byte at 417D    Maximum environment size
  10. ------------    ------------------------
  11.  
  12.      8         236 bytes
  13.      7         492 bytes
  14.      6           748 bytes
  15.      5          1004 bytes
  16.      4          1260 bytes
  17.  
  18. A value of 6 should be sufficient for most situations.  Using a value
  19. less than 4 may cause unpredictable program operation and is therefore
  20. NOT recommended.
  21.  
  22. The following example session with debug will change the value to 6:
  23.  
  24. Enter
  25.  
  26. debug pkarc.com<CR>
  27.  
  28. where <CR> means the enter key.  Debug will display a "-" prompt.  Then enter
  29.  
  30. e417d<CR>.
  31.  
  32. Debug will display something like "xxxx:417d  08.".  The xxxx value will
  33. vary from computer to computer.  Debug should display the number 08 as
  34. above.  If this value is not 08, then you do not have PKARC 2.0 and
  35. should not continue.  This patch is only necessary for PKARC 2.0.
  36. Enter
  37.  
  38. 6<CR>
  39.  
  40. followed by
  41.  
  42. w<CR>
  43.  
  44. and then
  45.  
  46. q<CR>.
  47.  
  48.  
  49. The result should appear similar to:
  50.  
  51. A>debug pkarc.com
  52. -e417d
  53. xxxx:417d  08.6
  54. -w
  55. -q
  56. A>
  57.  
  58.  
  59.  
  60.         -Phil Katz  12/29/86
  61. .